Skip to content

AsyncSubject.OnNext(T) method

Defined in

Type: AsyncSubject Namespace: System.Reactive.Subjects Assembly: System.Reactive.dll

Applies to

netstandard2.0

public override void OnNext(T value)

Summary: Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers.

Parameters

NameTypeDescription
valueTThe value to store in the subject.